home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n02.arc / MYXCOPY.BAT < prev    next >
DOS Batch File  |  1990-01-02  |  252b  |  14 lines

  1.  
  2. @ECHO OFF
  3. :MYXCOPY.BAT -- backs up all files in the current directory
  4. :to drive A:.
  5. ATTRIB +A *.* > NUL
  6. :Loop
  7. ECHO Insert a blank disk in drive A: and press any key.
  8. PAUSE > NUL
  9. XCOPY *.* A: /M
  10. IF ERRORLEVEL 1 GOTO loop
  11. ECHO All done!
  12.  
  13.  
  14.